-- card: 43142 from stack: in -- bmap block id: 0 -- flags: 0000 -- background id: 4755 -- name: -- part contents for background part 4 ----- text ----- Person *person; /* pointer to direct object */ person = malloc(sizeof(Person)); /* dynamic memory allocation - 'direct' objects */ blessD(person,Person); /* declare class of person */ . . free(person); /* deallocate person */ -- part contents for background part 7 ----- text ----- 129